home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / scoobybigair.swf / scripts / frame_1 / DoAction_5.as < prev    next >
Text File  |  2007-10-01  |  313b  |  17 lines

  1. gameMC.btn_handler_next_screen = function()
  2. {
  3.    gameMC.play();
  4. };
  5. gameMC.btn_handler_play = function()
  6. {
  7.    gameMC.gotoAndPlay("NextLevel");
  8. };
  9. gameMC.btn_handler_gameover = function()
  10. {
  11.    gameMC.gotoAndPlay("GameOver");
  12. };
  13. gameMC.btn_handler_restart = function()
  14. {
  15.    gameMC.gotoAndPlay(1);
  16. };
  17.